* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    /* Header Section */
    .hero2 {
      height: 30vh;
      min-height: 600px;
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                  url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: white;
      text-align: center;
    }
s
    .hero-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: 4.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    /* Main About Section */
    .about-section {
      padding: 80px 20px;
      background: #fff;
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
     align-items: flex-start;
    }

    .about-image {
      flex: 1;
      min-width: 300px;
      position: relative;
    }

    .about-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 15px 35px sandybrown;
    }

    .blue-box {
      position: absolute;
      bottom: -130px;
      right: -30px;
      background: #2a7de1;
      color: white;
      padding: 40px 35px;
      border-radius: 12px;
      max-width: 320px;
      box-shadow: 0 10px 25px saddlebrown;
    }

    .blue-box h2 {
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    /* Right Side Content */
    .about-content {
      flex: 1;
      min-width: 300px;
    }

    .feature {
      margin-bottom: 50px;
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: #2a7de1;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 28px;
    }

    .feature h3 {
      font-size: 1.5rem;
      margin-bottom: 12px;
      color: #222;
    }

    .feature p {
      color: #666;
      line-height: 1.7;
    }

    /* Trust Logos */
    .trust-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      margin-top: 80px;
      opacity: 0.85;
    }

    .trust-logos img {
      height: 90px;
     
      transition: all 0.3s;
    }

    

    /* Responsive */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 3.5rem;
      }
      .about-container {
        flex-direction: column;
      }
      .blue-box {
        position: static;
        margin-top: 30px;
        right: auto;
      }
    }

    @media (max-width: 576px) {
      .hero2 h1 {
        font-size: 2.8rem;
      }
      .blue-box {
        padding: 30px 25px;
      }
    }